home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr36 / njoin10.zip / NJOIN.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-05-23  |  1KB  |  88 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     STRING001 = TokenStr()
  24.     If (Len(STRING001) > 0) Then
  25.         Goto LABEL002
  26.     Endif
  27.     :LABEL001
  28.     If (Exist(PPEPath() + "NWORK")) DispFile PPEPath() + "NWORK", 1 + 2 + 4
  29.     AnsiPos 0, 23
  30.     InputStr "Enter network # to view (Enter = None)", STRING001, 14, 2, "0123456789", 8192
  31.     If (STRING001 <= 0) End
  32.     If (Exist(PPEPath() + "CONF" + STRING001 + ".")) DispFile PPEPath() + "CONF" + STRING001 + ".", 1 + 2 + 4
  33.     AnsiPos 0, 23
  34.     InputStr "Conference # to join (Enter)=none, (R)elist", STRING001, 14, 4, "0123456789Rr", 8192
  35.     If (Upper(STRING001) == "R") Then
  36.         Goto LABEL001
  37.     Endif
  38.     If (STRING001 <= 0) End
  39.     :LABEL002
  40.     Join STRING001
  41.     End
  42.  
  43. ;------------------------------------------------------------------------------
  44. ;
  45. ; Usage report (before postprocessing)
  46. ;
  47. ; ■ Statements used :
  48. ;
  49. ;    3       End
  50. ;    4       Goto 
  51. ;    1       Let 
  52. ;    6       If 
  53. ;    2       DispFile 
  54. ;    2       InputStr 
  55. ;    1       Join 
  56. ;    2       AnsiPos 
  57. ;
  58. ;
  59. ; ■ Functions used :
  60. ;
  61. ;    12      +
  62. ;    1       ==
  63. ;    2       <=
  64. ;    1       >
  65. ;    2       !
  66. ;    1       Len(
  67. ;    1       Upper()
  68. ;    4       PPEPath()
  69. ;    2       Exist()
  70. ;    1       TokenStr()
  71. ;
  72. ;------------------------------------------------------------------------------
  73. ;
  74. ; Analysis flags : No flag
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Postprocessing report
  79. ;
  80. ;    0       For/Next
  81. ;    0       While/EndWhile
  82. ;    2       If/Then or If/Then/Else
  83. ;    0       Select Case
  84. ;
  85. ;------------------------------------------------------------------------------
  86. ;                 AEGiS Corp - Break the routines, code against the machines!
  87. ;------------------------------------------------------------------------------
  88.